home *** CD-ROM | disk | FTP | other *** search
/ Softwarová Záchrana 3 / Softwarova-zachrana-3.bin / Xteq X-Setup / xqdcXSP-Setup-EN.exe / {app} / plugins / XQ WinNT RAS Options 4.xpl < prev    next >
Text File  |  2004-02-21  |  1KB  |  46 lines

  1. "FILE"="Xteq Systems X-Setup Plugin 6.0"
  2. "TYPE"="6"
  3. "COUNT"="1"
  4. "UIPATH 1"="Network\RAS & DUN"
  5. "UIPATH 2"="Startup/Shutdown\Startup\Windows NT/2K/XP\31) Inside Login Window"
  6. "NAME"="Login Window: Dial-up Checkbox"
  7. "VERSION"="1.10"
  8. "LANGUAGE"="VBScript"
  9. "OSVERSION"="0101011"
  10. "TEXT 1"="Always activate "Logon using Dial-up connection""
  11. "DESCRIPTION 1"="Activate this setting to have the dial-up checkbox automatically activated in your login window."
  12. "AUTHOR"="Xteq Systems"
  13. "CONTACTURL"="http://www.xteq.com"
  14. "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
  15. "COMMENT 1"="Thanks to CptSiskoX for his help!"
  16. "COMMENT 2"="Thanks to Quitch for the text correction!"
  17.  
  18.  
  19. v4="HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon\RasForce"
  20.  
  21. Sub Plugin_Initialize 
  22.  i=RegReadValue(v4)
  23.  if i=1 then SetUIElement 1,true
  24. End Sub
  25.  
  26. Sub Plugin_CheckData(ElementIndex)
  27. End Sub
  28.  
  29. Sub Plugin_Apply(ElementIndex,ElementSubIndex)
  30.  b=GetUIElement(1)
  31.  if b=true then
  32.     Call RegWriteValue(v4,"1",1)
  33.  else
  34.     Call RegWriteValue(v4,"0",1)
  35.  end if
  36.  
  37.  
  38.  Call Logoff
  39. End Sub
  40.  
  41. Sub Plugin_Terminate 
  42. End Sub
  43.  
  44.  
  45.  
  46.